home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / adduser.conf next >
Encoding:
Text File  |  2006-10-25  |  2.5 KB  |  72 lines

  1. # /etc/adduser.conf: `adduser' configuration.
  2. # See adduser(8) and adduser.conf(5) for full documentation.
  3.  
  4. # The DSHELL variable specifies the default login shell on your
  5. # system.
  6. DSHELL=/bin/bash
  7.  
  8. # The DHOME variable specifies the directory containing users' home
  9. # directories.
  10. DHOME=/home
  11.  
  12. # If GROUPHOMES is "yes", then the home directories will be created as
  13. # /home/groupname/user.
  14. GROUPHOMES=no
  15.  
  16. # If LETTERHOMES is "yes", then the created home directories will have
  17. # an extra directory - the first letter of the user name. For example:
  18. # /home/u/user.
  19. LETTERHOMES=no
  20.  
  21. # The SKEL variable specifies the directory containing "skeletal" user
  22. # files; in other words, files such as a sample .profile that will be
  23. # copied to the new user's home directory when it is created.
  24. SKEL=/etc/skel
  25.  
  26. # FIRST_SYSTEM_[GU]ID to LAST_SYSTEM_[GU]ID inclusive is the range for UIDs
  27. # for dynamically allocated administrative and system accounts/groups.
  28. FIRST_SYSTEM_UID=100
  29. LAST_SYSTEM_UID=999
  30.  
  31. # FIRST_[GU]ID to LAST_[GU]ID inclusive is the range of UIDs of dynamically
  32. # allocated user accounts/groups.
  33. FIRST_UID=1000
  34. LAST_UID=29999
  35.  
  36. # The USERGROUPS variable can be either "yes" or "no".  If "yes" each
  37. # created user will be given their own group to use as a default.  If
  38. # "no", each created user will be placed in the group whose gid is
  39. # USERS_GID (see below).
  40. USERGROUPS=yes
  41.  
  42. # If USERGROUPS is "no", then USERS_GID should be the GID of the group
  43. # `users' (or the equivalent group) on your system.
  44. USERS_GID=100
  45.  
  46. # If DIR_MODE is set, directories will be created with the specified
  47. # mode. Otherwise the default mode 0755 will be used.
  48. DIR_MODE=0755
  49.  
  50. # If SETGID_HOME is "yes" home directories for users with their own
  51. # group the setgid bit will be set. This was the default for
  52. # versions << 3.13 of adduser. Because it has some bad side effects we
  53. # no longer do this per default. If you want it nevertheless you can
  54. # still set it here.
  55. SETGID_HOME=no
  56.  
  57. # If QUOTAUSER is set, a default quota will be set from that user with
  58. # `edquota -p QUOTAUSER newuser'
  59. QUOTAUSER=""
  60.  
  61. # If SKEL_IGNORE_REGEX is set, adduser will ignore files matching this
  62. # regular expression when creating a new home directory
  63. SKEL_IGNORE_REGEX="dpkg-(old|new|dist)"
  64.  
  65. # Set this if you want the --add_extra_groups option to adduser to add
  66. # new users to other groups.  Default:
  67. #EXTRA_GROUPS="dialout cdrom floppy audio src video lp src users"
  68.  
  69. # If ADD_EXTRA_GROUPS is set to something non-zero, the EXTRA_GROUPS
  70. # option above will be default behavior for adding new, non-system users
  71. #ADD_EXTRA_GROUPS=1
  72.